Word | Frequency | Number of right neighbors | Number of left neighbors | Ratio |
---|---|---|---|---|
La | 837 | 72 | 2 | 36.0000 |
però | 654 | 26 | 1 | 26.0000 |
El | 906 | 77 | 3 | 25.6667 |
En | 480 | 21 | 1 | 21.0000 |
Però | 177 | 13 | 1 | 13.0000 |
Els | 337 | 25 | 2 | 12.5000 |
seva | 459 | 36 | 3 | 12.0000 |
ni | 215 | 10 | 1 | 10.0000 |
segons | 169 | 9 | 1 | 9.0000 |
Aquest | 105 | 8 | 1 | 8.0000 |
A | 379 | 15 | 2 | 7.5000 |
sota | 57 | 7 | 1 | 7.0000 |
Com | 106 | 7 | 1 | 7.0000 |
pels | 87 | 7 | 1 | 7.0000 |
Per | 255 | 14 | 2 | 7.0000 |
Les | 201 | 14 | 2 | 7.0000 |
I | 283 | 18 | 3 | 6.0000 |
No | 243 | 18 | 3 | 6.0000 |
la | 7647 | 566 | 97 | 5.8351 |
les | 2655 | 215 | 42 | 5.1190 |
Word | Frequency | Number of right neighbors | Number of left neighbors | Ratio |
---|---|---|---|---|
tipus | 75 | 1 | 9 | 0.1111 |
futur | 53 | 1 | 6 | 0.1667 |
anys | 455 | 8 | 46 | 0.1739 |
joc | 31 | 1 | 5 | 0.2000 |
podem | 47 | 1 | 5 | 0.2000 |
mitjans | 53 | 1 | 5 | 0.2000 |
mena | 41 | 1 | 5 | 0.2000 |
Estats | 43 | 1 | 5 | 0.2000 |
mesura | 50 | 1 | 5 | 0.2000 |
conjunt | 46 | 1 | 5 | 0.2000 |
curs | 36 | 1 | 4 | 0.2500 |
clar | 69 | 2 | 8 | 0.2500 |
et | 60 | 1 | 4 | 0.2500 |
ministre | 39 | 1 | 4 | 0.2500 |
total | 93 | 2 | 8 | 0.2500 |
Regne | 19 | 1 | 4 | 0.2500 |
format | 35 | 1 | 4 | 0.2500 |
l'exèrcit | 16 | 1 | 4 | 0.2500 |
Regne Unit | 19 | 1 | 4 | 0.2500 |
difícil | 45 | 1 | 4 | 0.2500 |
In this subsection, we compute the ratio of the number of right neighbors and the number of left neighbors. Again, we look for words with extreme ratios:
Data for first table:
select word,w.freq,aa.cnt, bb.cnt,aa.cnt/bb.cnt as r from words w, (select w1_id,count(c.w2_id) as cnt from co_n c where w1_id>100 group by w1_id) aa, (select w2_id,count(c.w1_id) as cnt from co_n c where w2_id>100 group by w2_id) bb where w_id=aa.w1_id and aa.w1_id=bb.w2_id order by r desc limit 20;
Diagram data:
select aa.cnt, bb.cnt from (select w1_id,count(c.w2_id) as cnt from co_n c where w1_id>100 group by w1_id) aa, (select w2_id,count(c.w1_id) as cnt from co_n c where w2_id>100 group by w2_id) bb where aa.w1_id=bb.w2_id;
5.1.7.1 Number of NN co-occurrences vs. Frequency I
5.1.7.2 Number of NN co-occurrences vs. Frequency II